google.golang.org/grpc.ClientConn.ctx (field)

11 uses

	google.golang.org/grpc (current package)
		balancer_wrapper.go#L86: 	ctx, cancel := context.WithCancel(cc.ctx)
		clientconn.go#L154: 	cc.ctx, cc.cancel = context.WithCancel(context.Background())
		clientconn.go#L210: 	cc.csMgr = newConnectivityStateManager(cc.ctx, cc.channelz)
		clientconn.go#L613: 	ctx    context.Context    // Initialized using the background context at dial time.
		clientconn.go#L715: 	case <-cc.ctx.Done():
		clientconn.go#L861: 	ac.ctx, ac.cancel = context.WithCancel(cc.ctx)
		clientconn.go#L1003: 	ac.ctx, ac.cancel = context.WithCancel(ac.cc.ctx)
		clientconn.go#L1400: 	newTr, err := transport.NewHTTP2Client(connectCtx, ac.cc.ctx, addr, copts, onClose)
		resolver_wrapper.go#L56: 	ctx, cancel := context.WithCancel(cc.ctx)
		stream.go#L399: 			case <-cc.ctx.Done():
		stream.go#L414: 	if err := cs.cc.ctx.Err(); err != nil {